home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / docs / gccfaq10 / memory.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-02-14  |  197 b   |  8 lines

  1. #include <dpmi.h>
  2.  
  3. main()
  4. {
  5.  printf("Physical memory availible %d\n", _go32_dpmi_remaining_physical_memory);
  6.  printf("Virtual memory availible %d\n", _go32_dpmi_remaining_virtual_memory);
  7. }
  8.